:root{
    --primary-color:#A40101;
    --white-color:#ffff;
    --black-color:#000000;
    --secodary-black:#1B1B1B;
    --body-font:"Fira Sans", sans-serif;
}
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: var(--body-font);
}
.nav_top{
    margin-top: 70px;
}
.common_heading p,.common_heading h2,.common_heading h2{
    font-size: 40px;
    /* font-size: 50px; */
    font-weight: 700;
    line-height: 60px;
    color: var(--black-color);
}
.space{
    margin:0% 72px;
}
.theme_back{
    background-image: -moz-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -webkit-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -ms-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
}

@media screen and (max-width:1200px) and (min-width:1025px) {
    .space{
        margin:0% 60px;
    }
}
@media screen and (max-width: 1024px) and (min-width:992px) {
    .space{
        margin:0% 50px;
    }
}
@media screen and (max-width:991px) {
    .space{
        margin:0% 3%;
    }
    .common_heading p,.common_heading h2{
        font-size: 30px;
    }
}
@media screen and (max-width:720px) {
    .space{
        margin:0% 0%;
    }
    .common_heading p , .common_heading h2{
        font-size: 28px;
        line-height: 40px;
    }
}


/* Navbar */
.stick_navbar.scrolled {
    background-color: #FFEEEE;
    background-image: none; 
    /* transition: 0.2s ease-in-out;  */
}
.banner_sec{
    background-image: -moz-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -webkit-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -ms-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
}
.stick_navbar{
    background-image: -moz-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -webkit-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    background-image: -ms-linear-gradient( -1deg, rgb(255,255,255) 0%, rgb(239,228,232) 30%, rgb(222,199,207) 62%, rgb(217,188,196) 100%);
    position: fixed;
    margin: 0px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; 
}

.nav_section .navbar-brand img,.nav_logo{
    max-width: 100%;
    }
.contact_btn{
    padding: 12px 22px;
    gap: 0px;
    border-radius: 50px;
    opacity: 0px;
    background: var(--primary-color);
    font-size: 13.65px;
    font-weight: 600;
    line-height: 16.38px;
    color: var(--white-color);
    border: 1px dotted transparent;
}
.contact_btn:hover,.contact_btn:focus{
    color:var(--white-color);
    /* background: var(--black-color); */
    /* background: linear-gradient(rgba(236, 175, 190, 1),rgba(236, 175, 190, 1)); */
    background: var(--black-color);
    /* border: 1px dotted var(--primary-color); */
}
#formcheck:disabled {
    background-color: #d6d6d6; /* Gray color */
    color: #a0a0a0; /* Light gray text color */
    cursor: not-allowed;
    border: 1px solid #ccc; /* Gray border */
}
.nav_ul{
    gap:30px;
}
.nav_ul li a{
    font-size: 18px;
    font-weight: 400;
    line-height: 18.3px;
    color: var(--black-color);
}
.nav_ul .dropdown-menu li a{
    font-size: 15.25px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 10px;
}
.offcanvas_logo{
    width: 75px;
}
@media screen and (max-width: 1024px) and (min-width:992px) {
    .nav_ul{
        gap: 25px;
    }
    .nav_section .navbar-brand img,.nav_logo{
        max-width: unset;
        }
}
@media screen and (max-width:991px) {
    .nav_ul{
        gap: 15px;
    }
}
@media screen and (min-width:992px) {
    .nav_ul .dropdown .dropdown-menu {
        display: block;
        position: absolute;
        top: 50px;
        overflow: hidden;
        visibility: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out, visibility 0s 0.5s, opacity 0.5s ease-in-out;
        opacity: 0;
    }
    
    .nav_ul .dropdown:hover .dropdown-menu {
        top: 50px;
        visibility: visible;
        max-height: 500px;
        opacity: 1;
        transition: max-height 0.5s ease-in-out, visibility 0s 0s, opacity 0.5s ease-in-out;
    }
    .nav_ul .dropdown-menu li a:hover{
        background: none;
        color: var(--primary-color);
    }
    .nav_ul .dropdown-menu{
        background: #DBC1C7;
        box-shadow: 3px 3px 20px 7px var(--secodary-black);
    }
}
@media screen and (max-width:721px) {
    .nav_section .navbar-brand img,.nav_logo{
        max-width: 100%;
        /* height: 60px;
        width: 225.52px; */
        }
}
/* banner section */
.banner_img img{
    max-width: 100%;
}
.banner_img video{
    max-width: 100%;
}
.banner_title{
    color: var(--black-color);
    font-size: 50px;
    font-weight: 700;
    line-height: 75px;
}
.primary_color{
    color: var(--primary-color);
}
.banner_sub_title{
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    color: var(--secodary-black);
}
.banner_txt{
    font-size: 19px;
    font-weight: 400;
    line-height: 35px;
}
@media screen and (min-width:992px) and (max-width:1200px) {
    .banner_title{
        font-size: 48px;
    }
    .banner_sub_title{
        font-size: 22px;
    }
    .banner_txt{
        font-size: 19px;
    }
}
@media screen  and (max-width:991px) {
    .banner_title{
        font-size: 35px;
        line-height: unset;
    }
    .banner_sub_title{
        font-size: 21px;
        line-height: normal;
    }
    .banner_txt{
        font-size: 18px;
        text-align: justify;
    }
}
@media screen and (max-width:720px) {
    .banner_title{
        font-size: 30px;
        text-align: center;
    }
    .banner_sub_title{
        text-align: center;
        font-size: 18.5px;
    }
}
/* About */
/* .about_title{
    position: relative;
    left: 70px;
} */
.about_image_div img{
    max-width: 100%;
}
.about_points{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 22px;
    margin-bottom: 15px;
}
.about_points p{
    font-size: 20px;
    font-weight: 400;
    line-height: 37px;
    color: var(--secodary-black);
}
.about_points img{
    width: 50px;
}
.about_section{
    background: url('../images/about_us/bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width:992px) and (min-width:1200px) {
    .about_points p{
        font-size: 20px;
        line-height: 37px;
    }
}
@media screen and (max-width:991px) {
    .about_points p{
        font-size: 19px;
    }
}
@media screen and (max-width:720px) {
    .about_title{
        text-align: center;
    }
    .about_points p{
        font-size: 18px;
    }
}

/* What we do */
.web_img{
    max-width: 100%;
}
.common_text p{
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    padding: 0% 50px;
    color: var(--black-color);
}
.what_we_do_img img{
    max-width: 100%;
}
.wwd_video video{
    max-width: 100%;
}
.what_we_do_heading{
    font-size: 27px;
    font-weight: 700;
    line-height: 32.4px;
    color: var(--black-color);
}
.what_we_do_txt{
    font-size: 20.7px;
    font-weight: 400;
    line-height: 34.2px;
    color: var(--secodary-black);

}
.bottom_wwd{
    position: relative;
    top: 100px;
}
@media screen and (max-width:991px) {
    .what_we_do_heading{
        font-size: 21px;
    }
    .what_we_do_txt{
        text-align: justify;
        font-size: 18px;
    }
}
@media screen and (max-width:720px) {
    .what_we_do_content{
        align-items: center;
    }
    /* .what_we_do_heading{
        position: relative;
        right: 80px;
         display: none;
    } */
}
/* product */
.product_img img{
    /* max-width: 100%; */
    width: 100%;
}
.produt_title, .produt_title h3{
    /* font-size: 33px; */
    font-weight: 600;
    line-height: 46px;
}
.produt_title h3 a{
    text-decoration: none;
    color: unset;
}
.product_list{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.product_list_img img{
    position: relative;
    top: 5px;
}
.product_list_txt{
    font-size: 18px;
    line-height: 33px;
    font-weight: 400;
    color: var(--black-color);
    text-align: justify;
}
.our_products_sec .space{
    margin: 0%;
}
.product_space_left{
    margin-left:10px;
}
.product_space_right{
    margin-right: 10px;
}
.our_products_sec .product_space_left{
    margin-left:72px;
}
.our_products_sec .product_space_right{
    margin-right: 72px;
}
@media screen and (max-width:991px) {
    .our_products_sec .product_space_left{
        margin-left:0%;
    }
    .our_products_sec .product_space_right{
        margin-right: 0%;
    }
    .product_space_left{
        margin-left: 0%;
    }
    .product_space_right{
        margin-right: 0%;
    }
    .our_products_sec .space{
        margin:0% 3%;
    }
    .produt_title, .produt_title h3{
        font-size: 22px;
    }
}
@media screen and (max-width:720px) {
    .our_products_sec .space{
        margin:0% 3%;
    }
    .common_text p{
        font-size: 18px;
        text-align: justify;
        padding: 0%;
    }
}
/* Why choose */
.why_choose_icons img{
    max-width: 100%;
}
.why_sec{
    background: rgba(255, 238, 238, 1);
}

.why_video video{
    max-width: 100%;
}
.why_card .card{
    background: transparent;
}
.why_card .card .card-title{
    font-size: 19.45px;
    font-weight: 600;
    line-height: 30.94px;
    color: var(--black-color);
}
.why_card .card .card-text{
    font-size: 13px;
    font-weight: 400;
    line-height: 26.52px;
}
.why_card{
    margin-bottom: 20px;
}
@media screen and (min-width:992px) {
    .left_col{
        padding-left: 0;
    }
    .right_col{
        padding-right: 0;
    }
    .left_col .card-body{
        padding-left: 0%;
    }
    .right_col .card-body{
        padding-right: 0%;
    }
}
@media screen and (max-width:1200px) and (min-width:992px) {
    .why_card .card{
        margin: 0% !important;
    }
    .why_card .card .card-text{
        font-size: 12px;
        line-height: unset;
    }
    .why_card .card .card-title{
        font-size: 14px;
        line-height: unset;
    }
    .why_card{
        margin-bottom:10px;
    }
    .why_card .card .card-body{
        padding-bottom: 0px;
    }
}
@media screen and (max-width:991px) {
    .why_card .card{
        margin: 0% !important;
    }
    /* .why_card .card .card-text{
        font-size: 16px;
        text-align: center;
    }
    .why_card .card .card-title{
        text-align: center;
    } */
    .why_card .card .card-text{
        font-size: 16px;
        text-align: left;
    }
    .why_card .card .card-title{
        text-align: left;
    }
}
@media screen and (max-width:720px) {
    .why_card .card .card-text{
        font-size: 16px;
        text-align: left;
    }
    .why_card .card .card-title{
        text-align: left;
    }
}
/* Engage */
/* .enage_image img{
    max-width: 100%;
} */
 .hwe_sec{
    margin-bottom: 100px;
 }
 .hwe_img{
    max-width: 100%;
 }
 .hwe_all_element{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
 }

 
 .hwe_div{
    position: relative;
 }
.hwe_all_element img{
    filter: brightness(100%);
}
 .hwe_all_element img:hover{
    filter: brightness(150%);
 }
 @media screen and (min-width:992px) {
    .hwe_all_element .even img{
        position: relative;
        top: 70px;
     }
     .hwe_all_element .odd img{
        position: relative;
        bottom: 0;
     }
    .hwe_all_element{
        /* margin-left: 50px; */
        position: relative;
        left: 50px;
    }
    .hwe2{
        right: 2%;
     }
     .hwe3{
        right: 4%;
     }
     .hwe4{
        right: 6%;
     }.hwe5{
        right: 8%;
     }.hwe6{
        right: 10%;
     }.hwe7{
        right: 12%;
     }
 }
 @media screen and (min-width:992px) and (max-width:1200px) {
    .hwe_all_element .even img{
        position: relative;
        top: 53px;
     }
 }
 
 @media screen and (max-width:991px) {
    .hwe_all_element .even img{
        position: relative;
        top: 50px;
     }
    .hwe_all_element{
        /* margin-left: 50px; */
        /* padding-left: 50px; */
        position: unset;
    }
    .hwe2{
        right: 2%;
     }
     .hwe3{
        right: 4%;
     }
     .hwe4{
        right: 6%;
     }.hwe5{
        right: 8%;
     }.hwe6{
        right: 10%;
     }.hwe7{
        right: 12%;
     }
 }
 @media screen and (min-width:721px) and (max-width:850px) {
    .hwe_all_element .even img{
        position: relative;
        top: 40px;
     }
 }
 @media screen and (max-width:720px) {
    .hwe_all_element{
        margin-left: unset;
    }
    .hwe_all_element .even img{
        position: relative;
        top: 40px;
     }
     .hwe1{
        right:  -3.8%;
     }
     .hwe2{
        right: -2%;
     }
     .hwe3{
        right: 0%;
     }
     .hwe4{
        right: 2%;
     }.hwe5{
        right: 4%;
     }.hwe6{
        right: 6%;
     }.hwe7{
        right: 8%;
     }
      .hwe_sec{
        margin-bottom: 50px;
    }
 }
/* technology */
.our_stack_heading{
    position: absolute;
    top: 120px;
    z-index: 1;
    left: 100px;
    color: white;
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.stack_div{
    position:relative;
}
.stack_div video{
    width: 100%;
}
.technology_stack_sec{
    background: url('../images/technology_stacks/stacks_bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 0%;
}
@media screen and (min-width:992px) and (max-width:1200px) {
    .our_stack_heading{
        position: absolute;
        top: 100px;
        z-index: 1;
        left: 120px;
        color: white;
        font-size: 52px;
        font-weight: 700;
        text-align: center;
    }
}
@media screen and (max-width:991px) {
    .our_stack_heading{
        position: absolute;
        top: 100px;
        z-index: 1;
        left: 100px;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
    }
}
@media screen and (max-width:820px) {
    .our_stack_heading{
        position: absolute;
        top: 75px;
        z-index: 1;
        left: 100px;
        font-size: 35px;
        font-weight: 700;
        text-align: center;
    }
}
@media screen and (max-width:720px) {
    .our_stack_heading{
        position: absolute;
        top: 50px;
        z-index: 1;
        left: 50px;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
    }
    .our_stacks{
        padding-top: 20px;
    }
}


/* Slider */
.technology_stack_sec .slide p{
    font-size: 16px;
    color: white;
}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    height: 95px;
    /* width: 95px; */
    margin-bottom: 10px;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* @media screen and (max-width:720px) {
    .technology_stack_sec .slide p{
        font-size: 14px;
        color: white;
    }
} */


/* feature_tech */
.feature_tech_sec .space{
    background: url('../images/unlock_tech/bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0px 59px 62px ;
    border-radius: 20px;
}
.feature_tech p:nth-child(1){
    font-size: 27.6px;
    font-weight: 700;
    line-height: 64.14px;
}
.feature_tech p:nth-child(2){
    font-size: 23.68px;
    font-weight: 600;
    line-height: 39.47px;
}
.feature_tech p:nth-child(3){
    font-size: 21px;
    font-weight: 400;
    line-height: 39.47px;    
}
.feature_tech_img img{
    max-width: 100%;
}
@media screen and (max-width:991px) {
    .feature_tech p:nth-child(1){
        font-size: 23px;
        line-height: unset;
    }
    .feature_tech p:nth-child(2){
        line-height: unset;
        font-size: 20px;
    }
    .feature_tech p:nth-child(3){
        font-size: 18px;
        line-height: 39.47px;    
    }
    .feature_tech_sec .space{
        padding: unset;
        padding: 25px 20px;
    }
}
@media screen and (max-width:768px) {
    .feature_tech_sec .space{
        padding: unset;
        padding: 20px 10px;
    }
    .feature_tech p:nth-child(1){
        font-size: 22px;
        line-height: unset;
    }
    .feature_tech p:nth-child(2){
        line-height: unset;
        font-size: 19px;
    }
    .feature_tech p:nth-child(3){
        font-size: 18px;
        line-height: 39.47px;    
    }
}
@media screen and (max-width:720px) {
    .feature_tech_sec .space{
        padding: unset;
        padding: 20px 10px;
    }
    .feature_tech p:nth-child(1){
        font-size: 22px;
        line-height: unset;
    }
    .feature_tech p:nth-child(2){
        line-height: unset;
        font-size: 19px;
    }
    .feature_tech p:nth-child(3){
        font-size: 18px;
        line-height: 39.47px; 
        text-align: justify;   
    }
    .feature_tech_img{
        margin-top: 20px;
    }
}

/* Footer */
.colon_img{
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 5px;
    opacity: .5;
}
.footer_section{
    background: url('../images/footer/footer_back.webp');
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;  
    padding: 60px 0% 0% 0%;
}


.footer_video video{
    position: relative;
    /* max-width: 100%; */
    bottom: 20px;
    width: 280px;
    height: 60px;
    margin-bottom: 10px;
    
}
.social_img img{
    max-width: 100%;
}
.social_img{
    gap: 15px;
    /* justify-content: space-evenly; */
    align-items: center;
}
.footer_nav{
    display: flex;
    gap: 25px;
}
.copy_right{
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
}
.social_link{
    height: 40px;
    width: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transition: .5s ease-in-out;
}
.social_link i{
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-color);
}
.social_link:hover{
    background: var(--primary-color);
    transform: translateY(-10px);
    transition: .5s ease-in-out;
    
}
.social_link:hover i{
    color: var(--white-color);
}
   .arrow_icon_footer{
    max-width: 100%;
   }
  .footer_section ul li .footert_links_div{
    margin-bottom: 10px;
  }
  .footert_links_div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .footer_products{
    margin-left: 25px;
  }
  .footert_links_div a{
    color: var(--black-color);
  }
  .footert_links_div a:hover{
    color: var(--primary-color);
  }
  .footer_quick_links{
    font-size: 16.94px;
    font-weight: 400;
    line-height: 20.33px;
    text-decoration: none;
    color: var(--black-color);
  }
  .footer_quick_links:hover{
    color: var(--primary-color);
  }
  .footer_link_heading{
    gap: 10px;
    position: relative;
    margin-bottom: 20px;
    /* left: -10px; */
  }
  .footer_link_heading img{
    width: 20px;
  }
  .footer_links_address{
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .footer_links_address img{
    width: 16px;
  }
  .social_fonts{
    font-size: 25px;
  }
  .social_fonts:hover{
    color: var(--primary-color);
  }
  @media screen and (max-width:1279px) and (min-width:992px) {
    .footer_video video{
        /* max-width: 100%; */
        bottom: 15px;
        width: 250px;
        height: 55px;
    }
  }
  @media screen and (max-width:1090px) and (min-width:1024px) {
    .footer_video video{
        /* max-width: 100%; */
        bottom: 10px;
        width: 220px;
        height: 50px;
    }
  }
  @media screen and (max-width:991px) {
    .footer_video video{
        max-width: 100%;
        margin-bottom: 0px;
    }
    .social_img{
        /* gap: 15px; */
        justify-content: space-evenly;
    }
    .footer_products{
        margin-left: unset;
      }
      .footer_quick_links{
        font-size: 14px;
      }
      .footer_links_address{
        font-size: 14px;
      }
  }
@media screen and (max-width:720px) {
    .social_img{
        gap: 20px;
        /* padding-left: 10px; */
    }
    .footer_nav{
        display: flex;
        gap: 10px;
    }
    .copy_right{
        text-align: center !important;
    }.footer_nav li a{
        font-size: 14.5px;
        font-weight: 500;
        line-height: 18.3px;
        text-decoration: none;
        color: var(--black-color);
    }
    .footer_video video{
        bottom: 10px;
        max-width: 100%;
        /* height: 100px; */
        
    }
    .footer_video  {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .colon_img{
        display: none;
    }
    .social_lg{
        display: none;
    }
}
/* testimonial */

.testi_name{
    font-size: 19.94px;
    font-weight: 800;
    line-height: 27.24px;
    color: var(--black-color);
}
.test_designation{
    font-size: 19.23px;
    font-weight: 400;
    line-height: 23.08px;
    color: var(--secodary-black);

}
.testi_client{
    max-width: 100%;
}
.testi_feedback{
    font-size: 15px;
    font-weight: 400;
    line-height: 31.34px;
    text-align:justify;
    margin-bottom: 50px;
}
.testi_card{
    padding: 30px 35px;
    border-radius: 15px;
    border-top-left-radius: 50px;
    border: 0.95px solid #ED6B6C;
    border-right: 7px solid #E07890;
    border-bottom: 7px solid #E07890;
}
.testi_details{
    /* border-left: 1px solid var(--secodary-black); */
    padding-left: 20px;
    position: relative;
}
.card_bottom{
    position: absolute;
    bottom: 10px;
}
.testi_details::before {
  content: '';
  position: absolute;
  left: 0; /* Adjusts the line to be centered horizontally */
  top: 25%;
  height: 50%; /* Sets the height of the line */
  width: 1px; /* Sets the thickness of the line */
  background-color: #8A8C8D;
}

.carousel-indicators-numbers{
    bottom: -40px;
}
.carousel-indicators-numbers li{
    list-style: none;
    text-indent: 0;
    margin: 0 5px !important;
    width: 10px !important;
    height: 10px !important;
    transform: rotate(45deg);
    border-radius: 50%;
      line-height: 30px;
      background: white;
      border: 1px solid transparent !important;
      background-color:#c1c1c1 !important;
      transition: all 0.25s ease;
}

.testimonial_section .carousel-indicators .active {
    border-radius: unset !important;
    border-radius: 3px !important;
    border: 1px solid transparent !important;
    background-color: #CC4D6A !important;
}

.star{
    margin-bottom: 15px;
    color:#ED6B6C ;
}
    .testimonial_title{
        font-size: 24px;
        font-weight: 600;
        line-height: 28.8px;
        text-align: center;
    }
    .test_heading p{
        font-size: 35px;
        font-weight: 700;
        line-height: 48px;
        text-align: left;
    }
    .testi_image{
        max-width: 100%;
    }

.testi-image{
    text-align: end;
    padding-top:15px;
}
.testi-image image{
    max-width: 100%;
}
.testi_row,.testi_main_row{
    height: 100%;
}
.tesi_description{
    gap: 18px;
}


@media screen and (max-width:991px) {
    .testi-image{
        padding: 5px;
        padding-top: 15px;
    }
    .testimonial_title{ 
        text-align: center; 
    }
    .test_heading p{
        text-align: center; 
    }
    
}
@media screen and (max-width:720px) {

    .tesi_description{
        gap: 10px;
    }
    .testi_details{
        padding-left:12px;
    }
    .test_designation{
        font-size: 13px;
    }
    .testimonial_section{
        padding-bottom: 30px;
    }
    .client_discription{
        font-size: 13px;
        height: 150px;
    
    }
    .testi-image{
        text-align: center;
    }
    .test_heading{
        background: url('../images/testimonials/colon1.webp');
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        text-align: center;
    
    }
    .testimonial_title{
        font-size: 21px;  
    }
    .test_heading p{
        font-size: 30px;    
    }
    .testi_card{
        padding: 20px;
        border: 0.95px solid #ED6B6C;
        border-right: 0.95px solid #E07890;
        border-bottom: 0.95 solid #E07890;
    }

}

/* spacing */
.about_section,.our_products_sec,.our_stacks ,.technology_stack_sec,.testimonial_section,.feature_tech_sec,.footer_section,.our_clients_sec{
    margin-top: 50px;
}
.why_choose_txt,.engage_sec{
    margin-top: 30px;
}
.margin_bottom{
    margin-bottom: 30px;
}
@media screen and (max-width:720px){
    .about_section,.our_products_sec,.our_stacks ,.technology_stack_sec,.testimonial_section,.feature_tech_sec,.footer_section,.our_clients_sec{
        margin-top: 20px;
    }
    .why_choose_txt,.engage_sec{
        margin-top: 20px;
    }
    .margin_bottom{
        margin-bottom: 20px;
    }
}

/* body::-webkit-scrollbar { 
    width: 5px;
    background-color:transparent;
}
body::-webkit-scrollbar-thumb {
	background-color: transparent;
}
body.scrolling::-webkit-scrollbar { 
    width: 5px;
    background-color: #DBC1C7;
}
body.scrolling::-webkit-scrollbar-thumb {
	
    background-color: var(--white-color);
} */

/* scroll to top */
.scroll-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    font-size: 20px;
    display: none; /* Hidden by default */
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    text-align: center;
}
.scroll-to-top-btn:hover {
    background: var(--black-color);
}

.food_clone_sm:hover{
    background: var(--black-color);
    color: white;
}
@media screen and (max-width:991px) {
    
    .food_clone_sm{
        background-color:var(--primary-color);
        color: white !important;
        padding: 8px 10px;
        font-size: 14px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    .food_clone_sm{
        position: absolute;
        left: 60%;
    }
}
@media screen and (max-width:720px) {
    .food_clone_sm{
        position: absolute;
        left: 55%;
    }
}
@media screen and (max-width:365px) {
    
    .food_clone_sm{
        background-color:var(--primary-color);
        color: white !important;
        padding: 8px 10px;
        font-size: 13px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}


/* contact */

.contact_section{
    background: url('../images/contact/banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 430px;
    z-index: 0;
    display: flex;
    align-items: center;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: white;
}
.bread_crumb_div nav ol{
    border-radius: 50px;
    width: 170.1px;
    height: 40.5px;
    opacity: 0px;
    background: linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2));
    display: flex;
    align-items: center;
    justify-content: center;

}
.banner_div{
    margin-left: 100px;
}
.contact_heading{
    font-size: 29.69px;
    font-weight: 600;
    line-height: 35.63px;
    color: var(--black-color);
}
.contact_txt{
    font-size: 16.97px;
    font-weight: 400;
    line-height: 28.85px;
}
.contact_address{
    margin-bottom: 20px;
}
.contact_address_heading{
    font-size: 21.21px;
    font-weight: 600;
    line-height: 28.85px;
    color: var(--black-color);
}
.contact_address_txt{
    font-size: 16.97px;
    font-weight: 400;
    line-height: 27.15px;
}
.conatct_all_elements{
    padding: 20px;
    background: url('../images/contact/address_background.webp');
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact_form_heading{
    font-size: 36.58px;
    font-weight: 600;
    line-height: 54.72px;
    color: var(--black-color);
    margin-bottom: 50px;
}
.contact_submit_btn{
    width: 100%;
}
.contact_form label{
    font-size: 18.63px;
    font-weight: 500;
    line-height: 22.35px;
    color: var(--secodary-black);
}
.contact_form input{
    height: 60px;   
    color: var(--black-color) !important;
}
.contact_form textarea{
    color: var(--black-color) !important;
}

.contact_form input::placeholder ,.contact_form textarea::placeholder {
    font-size: 17.46px;
    font-weight: 400;
    line-height: 20.96px;
}
.contact_form_sec{
    margin-top: 50px;
}
.contact_form_div{
    padding: 10px;
}
.contact_map_section{
    margin-top: 50px;
}
.contact_map{
    filter: grayscale(1);
}
.contact_map iframe{
    height:456px;
}

@media screen and (max-width:991px) {
    .contact_section{
        background: url('../images/contact/banner.webp');
        background-position:right;
    }
    .banner_div{
        margin-left: unset;
    }
    .contact_form_heading{
        font-size: 30px;
    }
}
@media screen and (max-width:720px) {
    .banner_heading{
        text-align: center;
    }
    .bread_crumb_div nav{
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .contact_section{
        background: url('../images/contact/banner.webp');
        background-position:right;
    }
    .contact_map iframe{
        height:300px;
    }
    .contact_map_section{
        margin-top: 20px;
    }
    .contact_form_sec{
        margin-top: 20px;
    }
}

/* error sec */
.error_sec{
    /* background-color: #FFF2F2; */
    padding: 4rem 0%;
}
@media screen and (min-width:991px) {
    .error_img{
        max-width:100%; 
    }
}

.error_element p:nth-child(1){
    color: var(--gold-color);
    font-size: 4rem;
    font-family: var(--title-font);
    margin-bottom: 0px;
    padding-top: 10px;
    font-weight: 600;
    line-height: normal;
}
.error_element p:nth-child(2){
    color: #161616;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1.2rem;
}
.error_element a{
    font-family: var(--body-font);
    font-weight: 700;
}
@media screen and (max-width:991px ) {
    .error_img{
        padding:unset;
    }
}
.starleter{
    color:red;
}
.contact_form .error {
    color: red;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
}


/* .iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text]{
    padding-right: 0% !important;
} */


.iti{
    display: block!important;
}


/* webapp */

.web_banner_img{
    padding: 10px;
}
.web_app_banner_sec{
    padding-top: 100px;
}
.web_app_service img{
    max-width: 100%;
}
.web_service_end{
    text-align: center;
}
.web_service_start{
    text-align: center;
}
/* @media screen and (min-width:992px) {
    .web_app_banner_title{
        font-size: 55px;
        font-weight: 700;
        line-height: 62px;
    }
} */
@media screen and (max-width:720px) {
    .web_service .product_img{
        text-align: center;
    }
}

/* Our Expertise */

.ex_icon{
    text-align: center;
    margin: 10px;
}
.ex_icon img{
    /* width: 300px; */
    max-width: 100%;
}
.expertise_main_img{
    position: relative;
}
.expertise_main_img img{
    max-width: 100%;
    
}
.ex_div_title{
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
}
.ex_div p{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;    
}
.our_expertise_sec{
    background: url('../images/web_app/expertisebg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media screen and (min-width:1200px) {
    .ex_icon{
        display: none;
    }
    .ex_div{
        width: 600px;
    }
    .ex_div1{
        position: absolute;
        top: -10px;
        left: 450px;
    }
    .ex_div2{
        position: absolute;
        top: 130px;
        left: 550px;
    }
    .ex_div3{
        position: absolute;
        top: 320px;
        left: 570px;
    }
    .ex_div4{
        position: absolute;
        bottom: 120px;
        left: 520px;
    }
    .ex_div5{
        position: absolute;
        bottom: -30px;
        left: 400px;
    }
}

@media screen and (max-width:1199px) and (min-width:992px) {
    .ex_icon{
        display: none;
    }
    .ex_div p{
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;    
    }
    .ex_div{
        width: 380px;
    }
    .ex_div1{
        position: absolute;
        top: -10px;
        left: 450px;
    }
    .ex_div2{
        position: absolute;
        top: 130px;
        left: 550px;
    }
    .ex_div3{
        position: absolute;
        top: 320px;
        left: 570px;
    }
    .ex_div4{
        position: absolute;
        bottom: 120px;
        left: 520px;
    }
    .ex_div5{
        position: absolute;
        bottom: -30px;
        left: 400px;
    }
}
@media screen and (max-width:1199px) and (min-width:1100px){
    .ex_div {
        width: 420px;  
    }
}
@media screen and (max-width:991px) {
    .expertise_div{
        width: 33.333333%;
    }
    .ex_icon{
        display: block;
    }
    .expertise_all_element{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ex_div_title{
        font-size: 20px;
        text-align: center;
    }
    .ex_div p{
        font-size: 14px;
        text-align: center;    
        padding: 5px;
    }
    .expertise_div{
        margin-bottom: 20px;
    }
    .our_expertise_sec{
        padding: 20px 0%;
    }
}
@media screen and (max-width:720px) {
    .expertise_div{
        width: 100%;
        margin-bottom: 10px;
    }
    .ex_icon{
        display: block;
    }
    .expertise_all_element{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        overflow-x: scroll;
        justify-content: center;
    }
    .our_expertise_sec{
        padding: 20px 0%;
    }
}
/* our benifits */
.web_benifit_img img{
    margin-top: 20px;
    max-width: 100%;
}
/* benifit  */
.benifit_div{
    min-width: 290px;
    height: 100%;
    background: rgba(243, 239, 255, 1);
    padding: 18px;
    border-radius: 10px;
}
.benifit_all{
    overflow-x: scroll;
    gap: 15px;
    padding-bottom: 20px;
    flex-direction: row;
    /* flex-wrap: wrap; */
    border-bottom: 1px solid rgba(255, 200, 200, 1) ;
}

.benifit_all::-webkit-scrollbar { 
    height: 5px;
    /* background: rgba(255, 200, 200, 1); */
}
.benifit_all::-webkit-scrollbar-thumb {
	background: rgba(255, 200, 200, 1);
    width: 5px;
}
.benifit_title{
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 5px;
}
.benifit-txt{
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;

}
.benifit_imgs{
    max-width: 100%;
    margin-bottom: 15px;
}
.bg-pink{
    background: rgba(255, 246, 234, 1);
}
.bg-pink:hover{
    background: rgb(243, 216, 196);
}
.bg-blue{
    background: rgba(243, 239, 255, 1);
}
.bg-blue:hover{
    background: rgb(236, 230, 255);
}
.bg-blue1{
    background: rgba(242, 247, 255, 1);
}
.bg-blue1:hover{
    background: rgb(221, 232, 250);
}
.bg-blue2{
    background: rgba(229, 255, 241, 1);
}
.bg-blue2:hover{
    background: rgb(217, 248, 231);
}
.bg-blue3{
    background: rgba(222, 255, 229, 1);
}
.bg-blue3:hover{
    background: rgb(208, 252, 218);
}
.bg-pink1{
    background: rgba(255, 242, 253, 1);
}
.bg-pink1:hover{
    background: rgb(253, 231, 250);
}
.bg-pink2{
    background: rgba(255, 245, 225, 1);
}
.bg-pink2:hover{
    background: rgb(255, 241, 214);
}
@media screen and (max-width:991px) {
    .benifit_div{
        min-width:400px;
    }
}
@media screen and (max-width:720px) {
    .benifit_all{
        flex-direction: column;
        overflow-x: hidden;
        border-bottom: none;
    }
    .benifit_div{
        text-align: center;
        min-width:380px;
    }
}
@media screen and (max-width:380px) {
    .benifit_div{
        min-width:350px;
    }
}

/* online_presence */
.online_presence .space{
    background: rgba(255, 242, 244, 1);
    padding: 15px 50px;
    border-radius: 10px;

}
.online_presence_title{
    font-size: 30px;
    font-weight: 600;
    line-height: 34.33px;
}
.online_presence_txt{
    font-size: 20px;
    font-weight: 400;
    line-height: 42.64px;
    text-align: justify;
}
.online_presence_img img{
    max-width: 100%;
    padding: 5px;
}
@media screen and (max-width:991px) {
    .online_presence_txt{
        font-size: 18px;
        line-height: 32px;
    }
}
@media screen and (max-width:720px) {
    .online_presence_title{
        font-size: 25px;
        text-align: center;
    }
    .online_presence_txt{
        text-align: justify;
    }
    .online_presence_img{
        text-align: center;
    }
    .online_presence .space{
        padding: 15px;
    }
}

/* work flow */
.flow_img img{
    max-width: 100%;
}
.work_flow_img img{
    max-width: 100%;
}
.work_flow p{
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: var(--secodary-black);
}
.work_flow p:nth-child(1){
    font-size: 20px;
    font-weight: 700;
}
.flow_sm img{
    /* max-width: 100%; */
    width: 100px;
}

@media screen and (min-width:1200px) {
    .flow_2{
        position: relative;
        top: 130px;
    }
    .flow_img img{
        max-width: 100%;
    }
    .flow_2{
        position: relative;
        top: 100px;
    }
    .work_flow{
        margin-bottom: 150px;
    }
    .flow_row .col-md-4{
        padding: 0px;
    }
}
@media screen and (max-width:1199px) and (min-width:992px) {
    .work_flow{
        margin-bottom:100px;
    }
    .flow_2{
        position: relative;
        top: 75px;
    }
    .flow_row .col-md-4{
        padding: 0px;
    }
    .work_flow p{
        font-size: 14px;
        line-height: 22px;
    }
    .work_flow p:nth-child(1){
        font-size: 20px;
    }
}
@media screen and (max-width:991px) {
    .work_flow{
        margin-bottom:50px;
    }
    .flow_2{
        position: relative;
        top: 75px;
    }
    .flow_row .col-md-4{
        padding: 0px;
    }
    .work_flow p{
        font-size: 14px;
        line-height: 22px;
    }
    .work_flow p:nth-child(1){
        font-size: 20px;
    }
}
@media screen and (min-width:760px) and (max-width:820px) {
    .work_flow{
        margin-bottom:40px;
    }
    .flow_2{
        position: relative;
        top: 40px;
    }
    .work_flow p{
        font-size: 12px;
        line-height: 22px;
    }
}
@media screen and (max-width:720px) {
    
    .work_flow{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        overflow-x: hidden;
    }
    .work_flow p{
        font-size: 12px;
        text-align: left;
        line-height: 22px;
    }
    .work_flow p:nth-child(1){
        font-size: 18px;
    }
    .flow_row .col-md-4{
        padding:0% 10px;
    }
    .flow_2{
        position: unset;
    }
}



/* Mobile App */
/* .mobile_app_banner_sec .mobile_app_banner_title{
    font-size: 45px;
    font-weight: 700;
    line-height: 62px;    
} */
@media screen and (min-width:1281px) {
    .mobile_app_banner_title_block{
        display: block;
    }
}
.mobile_app_service img{
    max-width: 100%;
}
.mobile_app_online_presence .space{
    padding:15px;
}
@media screen and (min-width:992px) {
    .mobile_app_service img{
        max-width: 100%;
        padding: 50px 0%;
    }
}
/* @media screen and (min-width:1370px) {
    .mobile_app_banner_sec .mobile_app_banner_title{
        font-size: 55px;
        font-weight: 700;
        line-height: 62px;    
    }
} */
@media screen and (max-width:991px) {
    /* .mobile_app_banner_sec .mobile_app_banner_title{
        font-size: 35px;
        font-weight: 700;
        line-height: 62px;    
    } */
    .mobile_app_online_presence .space{
        padding: 15px 15px;
    }
}
/* @media screen and (max-width:991px) {
    .mobile_app_banner_sec .mobile_app_banner_title{
        font-size: 30px;
        font-weight: 700;
        line-height: unset;    
    }
} */

/* why_choose */
.why_img{
    max-width: 100%;
    padding:0% 50px;
}

.why_div{
    position: relative;
}

.why_list_title{
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    color: var(--black-color);
    text-align: left;
}
.why_list p{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    left: 0;
    padding:0% 20px 0% 0%;
}
.why_list{
    width: 300px;
}
.why_list_parent img{
    max-width: 100%;
}
.why_3 p{
    text-align: center !important;
}
.why_div{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width:992px) {
    .why_list_title{
        font-size: 21px;
    }
    .why_list p{
        font-size: 14px;
    }
    .why_list{
        width: 250px;
    }
    .why_choose_sec{
        padding: 200px 0%;
        padding-top: 0px;
    }
    .why_1{
        position: absolute;
        top:150px;
        left: 0px;
    }
    .why_2{
        position: absolute;
        top: 350px;
        left:80px;
    }
    .why_3{
        position: absolute;
        bottom: -200px;
        left:40%;
        text-align: center;
    }
    .why_4{
        position: absolute;
        top:160px;
        right: -30px;
    }
    .why_5{
        position: absolute;
        bottom:20px;
        right: 30px;
    }
}
@media screen and (min-width:1000px) and (max-width:1100px){
    .why_img{
        max-width: unset;
        width: 70%;
    }
    .why_list{
        width: 240px;
    }
    .why_1{
        position: absolute;
        top:20px;
    }
    .why_2{
        position: absolute;
        top: 300px;
        left:0px;
    }
    .why_3{
        position: absolute;
        bottom: -190px;
        left:40%;
    }
    .why_4{
        position: absolute;
        top:10px;
        right: -30px;
    }
    .why_5{
        position: absolute;
        bottom:0px;
        right: 0px;
    }
}
@media screen and (min-width:1281px) {
    .why_choose_sec{
        padding: 200px 0%;
        padding-top: 0px;
    }
    .why_1{
        position: absolute;
        top:150px;
        left: 40px;
    }
    .why_2{
        position: absolute;
        top: 350px;
        left:80px;
    }
    .why_3{
        position: absolute;
        bottom: -190px;
        left:40%;
    }
    .why_4{
        position: absolute;
        top:150px;
        right: 20px;
    }
    .why_5{
        position: absolute;
        bottom:30px;
        right: 90px;
    }
}

@media screen and (max-width:991px) {
    .why_list_parent{
        max-width: 100%;
    }
    .why_img{
        display: none;
    }
    .why_all_div{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .why_list_parent{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 50%;
        margin-bottom: 20px;
    }
    .why_3 p{
        text-align: left !important;
    }
}
@media screen and (max-width:720px) {
    .why_list_parent{
        gap: 10px;
        width: 100%;
    }
    .why_list_title{
        font-size: 18px;
    }
    .mobile_service .common_heading p,.mobile_service .common_heading h2{
        line-height: unset;
    }
}



.service_img_div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
}
.service_list_icon{
    border-radius: 50px;
    width: 250px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content:space-between;
    /* justify-content: center; */
    /* flex-direction: row; */
    /* padding:10px 50px; */
}
/* .service_icon_div{
    position: relative;
}
.service_icons_r{
    position: absolute;
    left: 0;
    top: 10px;
} */
 .sevice_list_title_l{
    position: relative;
    left: 40px;
    bottom: 1px;
 }
 .service_icon_div_l{
    position: relative;
    top: 2px;
    right: 5px;
 }
 .sevice_list_title_r{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right:30px;
 }
 .service_icon_div_r{
    position: relative;
    top: 2px;
    left: 5px;
 }
 .sevice_list_title4{
    position: relative;
    right: 40px;
 }
 .sevice_list_title5{
    position: relative;
    right: 60px;
 }
 .sevice_list_title6{
    position: relative;
    right: 30px;
 }
.service_list_icon p{
    padding-top:20px ;
    font-size: 17px;
    font-weight: 500;
    /* line-height: 27.45px; */
    text-align: center;
}
.service_image{
    max-width: 100%;
}
.service_sm_img{
    max-width: 100%;
    margin-bottom: 20px;
}
.service_sm_1{
    background: linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_list_icon{
    transition: .5s ease-in-out;
}
.service_sm_1:hover,.service_list_icon1:hover{
    background: linear-gradient(91.9deg, #f37e25 -9.21%, #d46714 98.4%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}
.service_sm_2{
    background: linear-gradient(90deg, #E07890 0%, #CC4D6A 100%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_sm_2:hover,.service_list_icon2:hover{
    background: linear-gradient(90deg, #fd7394 0%, #dd365d 100%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}
.service_sm_3{
    background: linear-gradient(90deg, #2AAFA4 0%, #0E9489 100%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_sm_3:hover,.service_list_icon3:hover{
    background: linear-gradient(90deg, #30ddcf 0%, #03beaf 100%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}
.service_sm_4{
    background: linear-gradient(91.9deg, #2192B5 -9.21%, #0D728F 98.4%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_sm_4:hover,.service_list_icon4:hover{
    background: linear-gradient(91.9deg, #0e7d9e -9.21%, #055166 98.4%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}
.service_sm_5{
    background: linear-gradient(90deg, #F7BB44 0%, #E99C00 100%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_sm_5:hover,.service_list_icon5:hover{
    background: linear-gradient(90deg, #fcb220 0%, #ffaa01 100%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}
.service_sm_6{
    background: linear-gradient(90deg, #1DD698 0%, #0AA472 100%);
    /* padding: 10px 0%; */
    border-radius:10px ;
}
.service_sm_6:hover,.service_list_icon6:hover{
    background: linear-gradient(90deg, #1beea8 0%, #05b37c 100%);
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 1));
    transition: .2s ease-in-out;
}

@media screen and (min-width:1281px) {
    .service_list_icon1::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #EB8F49;
        background:linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
        position: absolute;
        bottom: -30px;
        right: -60px;
        transform: rotate(45deg);
        z-index: -1;
        filter: none;
        box-shadow: none;
    }
    .service_list_icon2::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 45px;
        right: -52px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon3::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 0;
        right: -25px;
        transform: rotate(-45deg);
        z-index: -1;
    }
    .service_list_icon4::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #2192B5;
        position: absolute;
        top: 100px;
        left: -72px;
        transform: rotate(-45deg);
        z-index: -1;
    }
    .service_list_icon5::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 45px;
        left: -55px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon6::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 0;
        left: -25px;
        transform: rotate(45deg);
        z-index: -1;
    }
    .service_list_icon{
        position: absolute;
    }
    .service_list_icon1{
        left: 120px;
        top: 0;
        background: linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
    }    
    .service_list_icon2{
        left: 70px;
        top: 200px;
        background: linear-gradient(90deg, #E07890 0%, #CC4D6A 100%);
    }
    .service_list_icon3{
        left: 120px;
        bottom: 80px;
        background: linear-gradient(90deg, #2AAFA4 0%, #0E9489 100%);
    }
    .service_list_icon4{
        right:120px;
        top: 0;
        background: linear-gradient(91.9deg, #2192B5 -9.21%, #0D728F 98.4%);
    }
    .service_list_icon5{
        right:70px;
        top: 200px;
        background: linear-gradient(90deg, #F7BB44 0%, #E99C00 100%);
    }
    .service_list_icon6{
        right:120px;
        bottom: 80px;
        background: linear-gradient(90deg, #1DD698 0%, #0AA472 100%);
    }
}
@media screen and (min-width:1152px) and (max-width:1280px) {
    .service_list_icon1::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #EB8F49;
        background:linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
        position: absolute;
        bottom: -20px;
        right: -30px;
        transform: rotate(45deg);
        z-index: -1;
    }
    .service_list_icon2::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 50px;
        right: -10px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon3::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 0;
        right: 20px;
        transform: rotate(-45deg);
        z-index: -1;
    }
    .service_list_icon4::after{
        content: '';
        width: 110px;
        height: 1px;
        border: 1px dotted #2192B5;
        position: absolute;
        top: 70px;
        left: -65px;
        transform: rotate(-50deg);
        z-index: -1;
    }
    .service_list_icon5::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 50px;
        left: -10px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon6::after{
        content: '';
        width: 100px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 22px;
        left: 2px;
        transform: rotate(45deg);
        z-index: -1;
    }
    .service_list_icon{
        position: absolute;
    }
    .service_list_icon1{
        left: 120px;
        top: 0;
        background: linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
    }    
    .service_list_icon2{
        left: 70px;
        top: 200px;
        background: linear-gradient(90deg, #E07890 0%, #CC4D6A 100%);
    }
    .service_list_icon3{
        left: 120px;
        bottom: 80px;
        background: linear-gradient(90deg, #2AAFA4 0%, #0E9489 100%);
    }
    .service_list_icon4{
        right:120px;
        top: 0;
        background: linear-gradient(91.9deg, #2192B5 -9.21%, #0D728F 98.4%);
    }
    .service_list_icon5{
        right:70px;
        top: 200px;
        background: linear-gradient(90deg, #F7BB44 0%, #E99C00 100%);
    }
    .service_list_icon6{
        right:120px;
        bottom: 80px;
        background: linear-gradient(90deg, #1DD698 0%, #0AA472 100%);
    }
}
@media screen and (min-width:992px) and (max-width:1150px) {
    .service_list_icon1::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #EB8F49;
        background:linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
        position: absolute;
        bottom: 0px;
        right: 0px;
        transform: rotate(45deg);
        z-index: -1;
    }
    .service_list_icon2::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 50px;
        right: -25px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon3::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 40px;
        right: -25px;
        transform: rotate(-40deg);
        z-index: -1;
    }
    .service_list_icon4::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #2192B5;
        position: absolute;
        /* top: 0px; */
        bottom: 10px;
        left: -20px;
        transform: rotate(-50deg);
        z-index: -1;
    }
    .service_list_icon5::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #E07890;
        position: absolute;
        bottom: 50px;
        left: -27px;
        transform: rotate(0deg);
        z-index: -1;
    }
    .service_list_icon6::after{
        content: '';
        width: 50px;
        height: 1px;
        border: 1px dotted #2AAFA4;
        position: absolute;
        top: 40px;
        left: -25px;
        transform: rotate(30deg);
        z-index: -1;
    }

    .service_list_icon{
        position: absolute;
    }
    .service_list_icon1{
        left: 70px;
        top: 0;
        background: linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
    }    
    .service_list_icon2{
        left: -50px;
        top: 200px;
        background: linear-gradient(90deg, #E07890 0%, #CC4D6A 100%);
    }
    .service_list_icon3{
        left: 20px;
        bottom: 50px;
        background: linear-gradient(90deg, #2AAFA4 0%, #0E9489 100%);
    }
    .service_list_icon4{
        right:70px;
        top: 0;
        background: linear-gradient(91.9deg, #2192B5 -9.21%, #0D728F 98.4%);
    }
    .service_list_icon5{
        right:-50px;
        top: 200px;
        background: linear-gradient(90deg, #F7BB44 0%, #E99C00 100%);
    }
    .service_list_icon6{
        right:20px;
        bottom: 50px;
        background: linear-gradient(90deg, #1DD698 0%, #0AA472 100%);
    }
}

@media screen and (max-width:991px) {
    /* .service_image{
        display: none !important;
    } */
    .service_list_icon{
        position:unset !important;
    }
    .service_all_list{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 50%;
        position: unset;
        justify-content: end;
        align-items: center;
        gap: 10px;
    }
    .service_list_icon1{
        left: 0;
        top: 0;
        background: linear-gradient(91.9deg, #EB8F49 -9.21%, #DA7326 98.4%);
    }    
    .service_list_icon2{
        left: 0;
        top: 0px;
        background: linear-gradient(90deg, #E07890 0%, #CC4D6A 100%);
    }
    .service_list_icon3{
        left: 0;
        bottom: 0px;
        background: linear-gradient(90deg, #2AAFA4 0%, #0E9489 100%);
    }
    .service_list_icon4{
        right: 0;
        top: 0;
        background: linear-gradient(91.9deg, #2192B5 -9.21%, #0D728F 98.4%);
        flex-direction: row-reverse;
    }
    .service_list_icon5{
        right: 0;
        top: 0px;
        background: linear-gradient(90deg, #F7BB44 0%, #E99C00 100%);
        flex-direction: row-reverse;
    }
    .service_list_icon6{
        right: 0;
        bottom: 0px;
        background: linear-gradient(90deg, #1DD698 0%, #0AA472 100%);
        flex-direction: row-reverse;
    }
    .service_img_div{
        display: none;
     }
}

@media screen and (max-width:720px) {
    /* .service_image{
        display: none !important;
    }
    .service_all_list{
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    } */
     .service_img_div{
        display: none;
     }
}

.bg_pink{
background: #FFECEC;
}

/* our client */
.client_img{
    max-width: 100%;
}
.clients_img_col{
    margin-bottom: 40px;
}

.clients_img_div:hover .client_img{
    filter: drop-shadow(0 0.5rem 0.25rem rgba(237, 107, 108, .4));
}

/* floating btn */ 

.icon_1 a .icon_name{
position: fixed;
top: 250px;
/* right: 40px; */
right: -110px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 16px;
color: var(--white-color);
font-weight: 700;
background: var(--primary-color);
/* padding: 10px 10px; */
height: 45px;
width:  100px;
transition: .5s ease-in-out;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.icon_1 a .icon_div{
    position: fixed;
    top: 250px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: var(--white-color);
    font-weight: 700;
    background: var(--primary-color);
    /* padding: 10px 10px; */
    height: 45px;
    width:  45px;
    transition: .5s ease-in-out;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;    
    }
.icon_1 a .icon_div i{
    font-size: 25px;
    animation: tilt-shaking 1.3s infinite;
}

.icon_1 a:hover .icon_name{
    right: 35px;
    background-color: #05b37c;
    z-index: 9999999;
}
.icon_1 a:hover .icon_div{
    background-color: #05b37c;
}
.icon_1:hover{
    transition: .5s ease-in-out;
    background: #25D366;
}
.icon_1:hover a {
    color: white;
}



.icon_2 a .icon_name{
    position: fixed;
    top: 300px;
    right: -110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: var(--white-color);
    font-weight: 700;
    background: var(--primary-color);
    /* padding: 10px 10px; */
    height: 45px;
    width:  100px;
    transition: .5s ease-in-out;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;    
    }
    .icon_2 a .icon_div{
        position: fixed;
        top: 300px;
        right: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--white-color);
        font-weight: 700;
        background: var(--primary-color);
        /* padding: 10px 10px; */
        height: 45px;
        width:  45px;
        transition: .5s ease-in-out;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;    
        }
    .icon_2 a .icon_div i{
        font-size: 18px;
        animation: skew-y-shake 1.3s infinite;
    }
    
    .icon_2 a:hover .icon_name{
        right: 35px;
        background-color: #039be5;
        z-index: 9999999;
    }
    .icon_2 a:hover .icon_div{
        background-color: #039be5;
    }
    .icon_2:hover{
        transition: .5s ease-in-out;
        background: #039be5;
    }
    .icon_2:hover a {
        color: white;
    }

@keyframes skew-y-shake {
    0% { transform: skewY(-15deg); }
    5% { transform: skewY(15deg); }
    10% { transform: skewY(-15deg); }
    15% { transform: skewY(15deg); }
    20% { transform: skewY(0deg); }
    100% { transform: skewY(0deg); }  
  }
  @keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }

  .footer_post{
    position: fixed;
    bottom: 10px;
    left: 10px;
  }
  .footer_post_link img{
    max-width: 100%;
    border-radius: 20px;
    width: 360px;
    height: 360px;
  }
  .close-button{
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid white;
    position: absolute;
    top: -10px;
    right: 0px;
    font-size: 16px;
    z-index: 999999999999;
  }
  @media screen and (max-width:720px) {
    .footer_post_link img{
        width: 200px;
        height: 200px;
    }
    .close-button{
        width: 30px;
        height: 30px;
    }
  }


/* Hnadyman page */
.common_mb{
    margin-bottom: 55px;
}
.handyman_bannersection{
    padding-top: 80px;
}
.hero_img_div img{
    max-width: 100%;
}
.handyman_hero_img_div img{
    max-width: 100%;
}
.handyman_about_txt{
    font-weight: 400;
    font-size: 21px;
    line-height: 46px;
    text-align: justify;
}
.handy_why_choose_img_div{
    margin-bottom: 15px;
}
.handy_why_choose_img_div img{
    max-width: 100%;
}
.handy_why_card h3,.handy_why_card_center h3{
    font-size: 20px;
}
.handy_why_card p{
    font-size: 16.5px;
    line-height: 32px;
}
.handy_why_card_center p{
    font-size: 16.5px;
    line-height: 32px;
    width: 320px;
    margin: auto;
}
.handy_why_card{
    margin-bottom: 60px;
}
.handy_common_text{
    font-weight: 400;
    font-size: 19px;
    line-height: 40px;
    text-align: center;
}
.handyman_keyreason{
    font-weight: 600;
    font-size: 28px;
    line-height: 60px;
}
.handyman_keyreason{
    margin-bottom: 20px;
    color:var(--primary-color);
}
@media screen and (max-width:991px) {
    .key_row{
        display: none;
    }
    .handy_why_card h3,.handy_why_card_center h3{
        font-size: 17px;
    }
    .handy_why_card p{
        font-size: 14px;
    }
    .handy_why_card_center p{
        font-size: 14px;
    }
    .handy_why_card_center p{
        font-size: 14px;
    }
    .handy_why_card{
        margin-bottom: unset;
    }
}
.handyman_flow_img_div img{
    max-width: 100%;
}
.handy_wc_img_div{
    margin-bottom: 10px;
}
.handy_wc_img_div img{
    max-width: 100%;
}
.handy_wc_card h4{
    font-weight: 500;
    font-size: 21.6px;
    line-height: 41.4px;
    text-align: center;
}
.handy_wc_card p{
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 0px;
}
.handy_wc_card{
    border-radius: 33px;
    background: #FFF4F4;
    border: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF4F4 50%, #fde9e9 50%);
    background-position: top left;
    transition: background-position 0.5s ease-in-out;
    background-size: 200% 200%;
    position: relative;

}
.handy_wc_card:hover {
    background-position: bottom right;
}
.card_row{
    height: 100%;
}
.handyman_we_offer_img_div img{
    max-width: 100%;
}
.handy_we_offer_div h4{
    font-weight: 600;
    font-size: 21.5px;
}
.handy_we_offer_div p{
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
}
.handy_we_offer_div{
    margin-bottom: 35px;
}
.handy_we_offer_section{
    background: url(../img/handyman/bg1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 30px 0%; */
    padding-top: 30px;
}
.handyman_services_list{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}
.handyman_services_list h3{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;    
}
.handyman_services_list h3 span{
    font-weight: 400;
    font-size: 17px;
    text-align: justify;

}
.handyman_service_list_img img{
    max-width: 100%;
}
.kick_start_title h2{
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 35px;
    line-height: 50px;
}
.kick_start_para p{
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    text-align: justify;
}
.kick_start_img_div img{
    max-width: 100%;
}
.kick_start_sec{
    background: #FFE2E2;
    padding: 30px 0%;
}

.rotate {
    -webkit-animation: rotate 5s normal linear infinite;
    animation: rotate 5s normal linear infinite;
  }
  
  /* @keyframes rotate {
    0% {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
    25% {
      -webkit-transform: rotate3d(0, 0, 1, 90deg);
      transform: rotate3d(0, 0, 1, 90deg);
    }
    50% {
      -webkit-transform: rotate3d(0, 0, 1, 180deg);
      transform: rotate3d(0, 0, 1, 180deg);
    }
    75% {
      -webkit-transform: rotate3d(0, 0, 1, 270deg);
      transform: rotate3d(0, 0, 1, 270deg);
    }
    100% {
      -webkit-transform: rotate3d(0, 0, 1, 360deg);
      transform: rotate3d(0, 0, 1, 360deg);
    }
  } */
@media screen and (max-width:991px) {
    .common_mb{
        margin-bottom: 40px;
    }
    .handyman_services_list{
        margin-bottom: 5px;
    }
    .handyman_services_list h3{
        line-height: unset;
    }
    .handyman_services_list h3 span{
        font-size: 16px;
        line-height: unset;    
    }
    .handyman_about_txt{
        font-size: 18px;
        text-align: justify;
        line-height: 40px;
    }
    .handy_why_card_center p{
        width: 100%;
        margin: unset;
    }
    .kick_start_title h2{
        font-size: 25px;
        line-height: 40px;
    }
}
@media screen and (max-width:720px) {
    /* .handy_why_card_center,.handy_why_card{
        margin-bottom: 30px;
    } */
    .kick_start_title h2{
        font-size: 22px;
        line-height: 35px;
    }
}



/* video */
.service_handyman_div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 40px;
}
.service_handyman_div h4{
    font-weight: 600;
    font-size: 17.5px;
    line-height: 33.51px;
    color: #000000;
}
.service_handyman_div span{
    margin-top: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
    color: #292929;
    
}
.service_handyman_div_img img{
    position: relative;
    bottom: 20px;
}
.service_tab_nav a{
    border: none !important;
    border-bottom: 1px solid #FFC8C8 !important;
    width: 200px ;
    
}
.service_tab_sec .nav-tabs .nav-link.active{
    border-bottom: 5px solid #FFC8C8 !important;
}
.tab_margin{
    margin-bottom: 35px;
}
 @media screen and (max-width:1280px) {
    .service_tab_sec .common_heading h2{
        font-size: 38px;
    }
 }
/* .service_row_bottom{
    display: none;
} */
@media screen and (max-width:991px) {
    /* .service_row_bottom{
        display: unset;
    } */
    .service_row_top{
        display: none;
    }
    .service_handyman_div{
        flex-direction: column;
        gap: 0px;
        margin-bottom: 10px;
    }
    .service_handyman_div_img{
        text-align: center;
        margin-bottom: 10px;
    }
    .service_handyman_div_img img{
        position: unset;
    }
    .service_handyman_div h4{
        font-size: 15px;
        text-align: center;
    }
    .service_handyman_div span{
        font-size: 14px;
        text-align: center;
    }
    .service_tab_sec .common_heading h2{
        font-size: 28px;
    }
    .tab_margin{
        margin-bottom: 25px;
    }
}
@media screen and (max-width:720px) {
    .service_tab_nav a {
        width: 100px;
    }
    .service_tab_sec .common_heading h2{
        font-size: 28px;
    }
    .tab_margin{
        margin-bottom: unset;
    }
}

.service_scroll_div{
    overflow-x: scroll !important;
    width: 100%;
    border-bottom: 1px solid #FFC8C8;
}
/* .scroll_parent{
    width:400px !important;
} */
.service_list_div{
    width: 400px ;
    margin-bottom: 40px;
}
.handy_service_title{
    font-weight: 600;
    font-size: 17.5px;
    line-height: 33.51px;
    /* padding:0% 10px; */
    padding-right: 20px;
}
.handy_service_title span{
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;;
    text-align: justify;

}
.service_list_div .videos{
    padding: 15px;
}

/* .service_scroll_div{

} */
body .service_scroll_div::-webkit-scrollbar { 
    /* width: 5px; */
    background-color:transparent;
    /* background: #FFC8C8; */
    height: 3px;

}
body .service_scroll_div::-webkit-scrollbar-thumb {
	background-color: transparent;
    background: #FFC8C8;
    width:  10px;
}


/* carousel */
.service_card{
    border: none;
}
.service_card .card-title{
    font-weight: 600;
    font-size: 17.5px;
    line-height: 33.51px;
    color: #000000;
}
.service_card .card-text{
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
}
@media screen and (min-width:992px) and (max-width:1092px) {
    .service_card .card-title{
        font-size: 15px;
    }
    .service_card .card-text{
        font-family: 14.5;
    }
}
@media screen and (max-width:991px) {
    .service_card{
        background: linear-gradient(135deg, rgb(249 234 234) 50%, rgb(253, 233, 233) 50%) left top / 200% 200%;
        border-radius: 12px;
        height: 100%;
        padding-top: 10px;
        padding-left: 10px;
    }
    .service_card:hover{
        background: linear-gradient(135deg, rgb(252, 232, 232) 50%, rgb(253, 233, 233) 50%) left top / 200% 200%;
    }
}
@media screen and (max-width:720px) {
    .service_card{
        background: linear-gradient(135deg, rgb(249 234 234) 50%, rgb(253, 233, 233) 50%) left top / 200% 200%;
        border-radius: 12px;
        padding-top:unset;
        padding-left: unset;
    }
    .service_card:hover{
        background: linear-gradient(135deg, rgb(252, 232, 232) 50%, rgb(253, 233, 233) 50%) left top / 200% 200%;
    }
    .service_card .card-body{
        padding-top: 7px;
    }
    .service_card .card-title{
        text-align: center;
    }
    .service_card .card-text{
        text-align: center;
    }
    .service_card_img_div{
        text-align: center;
        padding-top: 15px;
    }
    
}

/* .service_carousel_sec .carousel-indicators .active {
    background-color: #FFC8C8 !important;
}
.carousel-indicators [data-bs-target]{
    background-color: #8c8c8c !important;
    width: 50px;
} */
/* .carousel-indicators .active {
    border-radius: unset !important;
    border-radius: 3px !important;
    border: 1px solid transparent !important;
    background-color: #CC4D6A !important;
} */

.footer_nav_ul li:nth-child(1){
    list-style-image:url(../images/footer_banner/bullet_sm.png);
    margin-bottom: 25px;
    position: relative;
    left: 5px;
}
.footer_nav_ul li:nth-child(1) h4{
    padding-left: 5px;
}
.footer_nav_ul li{
    list-style-image: url(../images/footer/arrow_icon.svg);
    margin-bottom: 20px;
}
.footer_nav_ul li a,.footer_nav_ul li p{
    padding-left: 10px;
}
.office_add_li{
    list-style-image: url(../images/footer/location.svg) !important;
}
.office_phone_li{
    list-style-image: url(../images/footer/ph_icon.svg) !important;
}
.office_email_li{
    list-style-image: url(../images/footer/mail_icon.svg) !important;
}

@media screen and (min-width:992px) and (max-width:1173px) {
    .footer_quick_links{
        font-size: 16px;
    }
}